* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: Arial, sans-serif;
}

/* ========== Hero Section Css Start ========*/
.ourWork-hero {
  min-height: 40vh;
  background-image: url("../../assets/home page image/Hero\ section\ Image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: space-between;
  padding: 60px;
  color: #fff;
}
.ourWork-hero-left {
  max-width: 65%;
}

.ourWork-hero-left h1 {
  font-size: 42px;
  color: #ffd966;
}

.ourWork-hero-left h2 {
  margin-top: 10px;
  font-size: 32px;
}
/* ========== Hero Section Css End ========*/

/* ========== Work Category Section Css Start ========*/
.ourWork-services-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.ourWork-services-container {
  max-width: 1200px;
  margin: auto;
}

.ourWork-services-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

/* Column layout */
.ourWork-services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card */
.ourWork-service-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Image */
.ourWork-service-card img {
  width: 45%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

/* Content wrapper (h3 always top) */
.ourWork-service-content {
  width: 55%;
  display: flex;
  flex-direction: column;
}

.ourWork-service-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.ourWork-service-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ===== Alternate layout ===== */
.ourWork-service-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* ========== Work Category Section Css End ========*/

/* ========== Mobile Responsive CSS Start ========*/
@media (max-width: 768px) {

  .ourWork-hero {
        padding: 60px 16px;
        text-align: center;
    }

    .ourWork-hero-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .ourWork-hero-left h1 {
        font-size: 20px;
        line-height: 1.4;
        color: #ffd966;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .ourWork-hero-left h2 {
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 0.5px;
    }

    /* ==== Our Work content Css Start ======*/
    .ourWork-services-section {
    padding: 50px 16px;
    }

    .ourWork-services-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .ourWork-services-grid {
        gap: 28px;
    }

    .ourWork-service-card {
        flex-direction: column;
        padding: 20px;
        gap: 18px;
    }

    .ourWork-service-card:nth-child(even) {
        flex-direction: column;
    }

    .ourWork-service-card img {
        width: 100%;
        height: 200px;
        border-radius: 12px;
    }

    .ourWork-service-content {
        width: 100%;
    }

    .ourWork-service-content h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .ourWork-service-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    /* ==== Our Work content Css End ======*/
}
/* ========== Mobile Responsive CSS End ========*/